@font-face {
  font-family: Px437 Cordata PPC-400;
  src: url("/fonts/Px437_Cordata_PPC-400.ttf");
}

@font-face {
  font-family: Ac437 Phoenix BIOS;
  src: url("/fonts/Ac437_Phoenix_BIOS.ttf");
}

@font-face {
  font-family: Ac437 DG One;
  src: url("/fonts/Ac437_DG_One_B.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Px437 Cordata PPC-400;
scrollbar-color: #69a3a0 white;
  scrollbar-width: thin;
}

body {
  background-image: url("https://wolfrayetlaw.com/imgs/background/waterbg5.png");
  background-size: cover;
  background-attachment: fixed;
  image-rendering: pixelated;    
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.tab-container {
  width: 950px;
  height: 600px;
border-top: 10px solid #ade6e3;
border-left: 10px solid #69a3a0;
border-bottom: 4px solid #376664;
border-right: 4px solid #376664;
  filter: drop-shadow(8px 8px 0 #000000);
  border-radius: 5px;
padding: 10px;
  border-radius: 5px;
  background: #f7f7f7;
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;    
    margin: auto;
}
 
/* Hide radio buttons */
.tab-container input[type="radio"] {
  display: none;
}

.tab-headers {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  position: fixed;
  background: transparent;
  overflow-y: scroll;
  scrollbar-width: none;
}
 
.tab-header {
  padding: 1rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
height: 30px;
width: 120px;
line-height: 25px;
font-size: 15px;
font-weight: bold;
color: #142b29;
background-color: #69a3a0;
filter: drop-shadow(3px 5px 0 #000000);
margin: 4px;
padding: 5px;
}
 
/* Hover state */
.tab-header:hover {
  background: #e9e9e9;
}

.tab-contents {
  padding: 2rem;
  margin-top: -20px;
  margin-left: 140px;
}

.tab-contents p {
margin: 10px;
}

.tab-contents ul {
    margin-left: 20px;
}
 
.tab-content {
  display: none; /* Hide all content by default */
}
 
/* Show content when corresponding radio is checked */
#tab1:checked ~ .tab-contents #content1,
#tab2:checked ~ .tab-contents #content2,
#tab3:checked ~ .tab-contents #content3 {
  display: block; /* Show active content */
}
 
/* Highlight active tab header */
#tab1:checked ~ .tab-headers label[for="tab1"],
#tab2:checked ~ .tab-headers label[for="tab2"],
#tab3:checked ~ .tab-headers label[for="tab3"] {
    color: #69a3a0;
    background-color: #dee94e;* Indicator bar */
}

a {
  font-size: 13px;
  color: #1d58c5;
  font-family: Ac437 Phoenix BIOS;
  font-weight: bold;
}

a:hover {
  font-size: 15px;
}

.tab-content button {
  color: #1d58c5;
  font-family: Ac437 DG One;
  font-weight: bold;
  background-color: rgb(251, 219, 77);
  padding: 6px;
  margin: 5px;
  border: 3px double black;
  filter: drop-shadow(2px 2px 0 #8f8f8f);
}

.tab-content button:hover {
  width: fit-content;
  font-size: 15px;
  font-style: italic;
  cursor: pointer;
}

.gallery {
    width: 740px;
    height: 430px;
    box-sizing: border-box;
    border: 1px solid #376664;
      display: grid;
    grid-template-columns: 220px 220px 220px;
    overflow-y: scroll;
}

.image {
    float:left;
    width: 210px;
    text-align:start;
    text-overflow: auto;
    line-height: 20px;
    margin: 3px;
    border-radius: 4px;
}

.image img {
    image-rendering:initial;
    width: 210px;
    border: 1px solid #376664;
  transition: transform 0.2s;
  -webkit-transition: -webkit-transform 0.2s;
  -moz-transition: -moz-transform 0.2s;
  -o-transition: -o-transform 0.2s;    
}

.image img:hover {
    transform: scale(1.05);
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);    
}

.imgdesc {
 border: 1px solid black;
 padding: 3px;
}

.topic { 
  font-size: 30px;
  font-weight: 500;
  margin: 20px;
  color: #376664;
  font-family: Ac437 DG One;
    filter: drop-shadow(3px 3px 0 #aab4b3);
  font-weight: bold;
}

.tab-content h1 {
    font-family: Ac437 Phoenix BIOS;
    font-size: 25px;
    margin-bottom: 10px;
}

mark {
    background-color: #ade6e3;
}